{% extends "base.html" %} {% block title %}My Profile - Quick Care Connect{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
To access all features like booking appointments and posting questions, please complete the following required fields:
| Full Name | {{ patient.user.name }} |
|---|---|
| {{ patient.user.email }} | |
| Phone Number | {% if patient.user.phone %}{{ patient.user.phone|format_phone }}{% else %}Not provided{% endif %} |
| CNIC | {{ patient.user.cnic or 'Not provided'|safe }} |
| Date of Birth | {% if patient.user.date_of_birth %} {{ patient.user.date_of_birth.strftime('%B %d, %Y') }} {% else %} Not provided {% endif %} |
| Gender | {% if patient.user.gender %} {{ patient.user.gender|title }} {% else %} Not provided {% endif %} |
| Emergency Contact | {% if patient.emergency_contact %} {{ patient.emergency_contact|format_phone }} {% if patient.emergency_relation %} ({{ patient.emergency_relation|title }}) {% endif %} {% else %} Not provided {% endif %} |
| Blood Group | {% if patient.blood_group %} {{ patient.blood_group }} {% else %} Not provided {% endif %} |
{{ patient.allergies }}
{{ patient.medical_history }}